home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pxljr.postinst < prev    next >
Text File  |  2009-09-18  |  3KB  |  76 lines

  1. #!/bin/sh
  2. # postinst script for pxljr
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postinst> `configure' <most-recently-configured-version>
  10. #        * <old-postinst> `abort-upgrade' <new version>
  11. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  12. #          <new-version>
  13. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  14. #          <failed-install-package> <version> `removing'
  15. #          <conflicting-package> <version>
  16. # for details, see http://www.debian.org/doc/debian-policy/ or
  17. # the debian-policy package
  18. #
  19. # quoting from the policy:
  20. #     Any necessary prompting should almost always be confined to the
  21. #     post-installation script, and should be protected with a conditional
  22. #     so that unnecessary prompting doesn't happen if a package's
  23. #     installation fails and the `postinst' is called with `abort-upgrade',
  24. #     `abort-remove' or `abort-deconfigure'.
  25.  
  26. if [ "$1" = "configure" ]; then
  27.     # Do the following only if CUPS is running and the needed CUPS tools
  28.     # are available
  29.     if which lpstat > /dev/null 2>&1 && \
  30.     which lpinfo > /dev/null 2>&1 && \
  31.     which lpadmin > /dev/null 2>&1 && \
  32.     LC_ALL=C lpstat -h /var/run/cups/cups.sock -r | grep -v not > /dev/null 2>&1; then
  33.         # Update the PPD files of all already installed print queues
  34.     driverregexp='lsb/usr/pxljr/'
  35.     gennicknameregexp=''
  36.     [ ! -z "$gennicknameregexp" ] && \
  37.         gennicknameregexp="; $gennicknameregexp"
  38.     gennicknameregexp='s/\s*\(recommended\)//'"$gennicknameregexp"
  39.     tempfiles=
  40.     trap 'rm -f $tempfiles; exit 0' 0 HUP INT QUIT ILL ABRT PIPE TERM
  41.     tmpfile1=`mktemp -t updateppds.XXXXXX`
  42.     tempfiles="$tempfiles $tmpfile1"
  43.     lpinfo -h /var/run/cups/cups.sock -m | grep -E $driverregexp > $tmpfile1
  44.     cd /etc/cups/ppd
  45.     for ppd in *.ppd; do
  46.         [ -r "$ppd" ] || continue
  47.         queue=${ppd%.ppd}
  48.         lpstat -h /var/run/cups/cups.sock -p "$queue" >/dev/null 2>&1 || continue
  49.         nickname=`grep '\*NickName:' "$ppd" | cut -d '"' -f 2 | perl -p -e 's/\n$//' | perl -p -e "$gennicknameregexp" | perl -p -e 's/(\W)/\\\\$1/g'`
  50.         lang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | perl -e 'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
  51.         ppdfound="0"
  52.         englishppduri=""
  53.         tmpfile2=`mktemp -t updateppds.XXXXXX`
  54.         tempfiles="$tempfiles $tmpfile2"
  55.         cat $tmpfile1 | perl -p -e "$gennicknameregexp" | grep -E '^\S+\s+.*'"$nickname"'$' | cut -d ' ' -f 1 > $tmpfile2
  56.         while read newppduri; do
  57.         [ "$ppdfound" = "0" ] && lpadmin -h /var/run/cups/cups.sock -p "$queue" -m $newppduri 2>/dev/null || continue
  58.         newlang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | perl -e 'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
  59.         [ "$newlang" = "$lang" ] && ppdfound="1"
  60.         [ "$newlang" = "english" ] && englishppduri="$newppduri"
  61.         done < $tmpfile2
  62.         [ "$ppdfound" = "0" ] && [ ! -z "$englishppduri" ] && lpadmin -h /var/run/cups/cups.sock -p "$queue" -m $englishppduri 2>/dev/null && ppdfound="1"
  63.         [ "$ppdfound" = "1" ] && echo PPD for printer $queue updated >&2
  64.     done
  65.     fi
  66. elif [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] || [ "$1" = "abort-deconfigure" ]; then
  67.     :
  68. else
  69.     echo "postinst called with unknown argument \`$1'" >&2
  70.     exit 0
  71. fi
  72.  
  73.  
  74.  
  75. exit 0
  76.